home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000363_news@columbia.edu _Mon Jun 12 15:09:10 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by fozimane.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id PAA10474
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Mon, 12 Jun 2000 15:09:09 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id PAA07426
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 12 Jun 2000 15:09:09 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id OAA04196
  10.     for kermit.misc@watsun.cc.columbia.edu; Mon, 12 Jun 2000 14:59:48 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: Trying the first connection Win98<--->Linux
  14. Date: 12 Jun 2000 14:59:16 -0400
  15. Organization: Columbia University
  16. Message-ID: <8i3bu4$5da@watsun.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <8i3ar8$gih$1@nnrp1.deja.com>,  <jjathayde@my-deja.com> wrote:
  20. :  As finally I've got C-Kermit installed under Linux(Slackware 7.0)
  21. : and K-95 under Windows 98, then I've tried the first connection test,
  22. : but I didn't got success. This is the situation:
  23. : ...
  24. : I could hear the telephone ring, ring a lot of times but nothing else
  25. : happened in the K-95 display. I don't know what I've made wrong or
  26. : missed to make. When I've stopped the connection I've got some warning
  27. : about something concerning to HOST or TELNET. But why not dialing, as
  28. : I saw with the examples in the Using C-Kermit, Second Edition?
  29. : I wish somebody could help me.
  30. This is a Linux system administration question.  You have to configure
  31. Linux to have a "getty" on the port to which you have connected its
  32. modem to answer the phone and give a login prompt.  See the Linux
  33. Serial-HOWTO for instructions.
  34.  
  35. Or if you want to bypass getty/login, you have to tell C-Kermit on Linux:
  36.  
  37.   set port /dev/ttyS2  ; or whatever
  38.   set speed 57600      ; or whatever
  39.   set modem tyhpe usr  ; or whatever
  40.   answer
  41.  
  42. - Frank